e37701a1f2e1b240640cd38a09e488a4c8f90293,Common/Frameworks/ERExtensions/Sources/er/extensions/ERXWOForm.java,ERXWOForm,_appendHiddenFieldsToResponse,#WOResponse#WOContext#,135
Before Change
boolean flag = _actionClass != null;
NSDictionary nsdictionary = computeQueryDictionaryInContext(_actionClass, _directActionName, _queryDictionary, flag, _otherQueryAssociations, context);
if(nsdictionary.count() > 0) {
for(Enumeration enumeration = nsdictionary.keyEnumerator(); enumeration.hasMoreElements(); response._appendContentAsciiString(">\n")) {
String s = (String)enumeration.nextElement();
Object obj = nsdictionary.objectForKey(s);
response._appendContentAsciiString("<input type=hidden");
After Change
response._appendContentAsciiString("<input type=\"hidden\"");
response._appendTagAttributeAndValue("name", s, false);
response._appendTagAttributeAndValue("value", obj.toString(), false);
response._appendContentAsciiString(" />\n");
}
}